home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #42 (1995-01)(PackMAN)(DE)[WB].zip / Purity #42 (1995-01)(PackMAN)(DE)[WB].adf / Includes3v1 / Includes3v1.lha / Exec / Errors.i < prev    next >
Text File  |  1994-12-04  |  499b  |  16 lines

  1.  
  2. {
  3.     exec/errors.i
  4. }
  5.  
  6. CONST
  7.  
  8.   IOERR_OPENFAIL   = -1;    {  device/unit failed to open  }
  9.   IOERR_ABORTED       = -2;    {  request terminated early [after AbortIO()]  }
  10.   IOERR_NOCMD      = -3;    {  command not supported by device  }
  11.   IOERR_BADLENGTH  = -4;    {  not a valid length (usually IO_LENGTH)  }
  12.   IOERR_BADADDRESS = -5;    {  invalid address (misaligned or bad range)  }
  13.   IOERR_UNITBUSY   = -6;    {  device opens ok, but requested unit is busy  }
  14.   IOERR_SELFTEST   = -7;    {  hardware failed self-test  }
  15.  
  16.